home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / jmod310.zip / TEST < prev    next >
Text File  |  1991-11-30  |  588b  |  21 lines

  1. #
  2. #    MAKE file to test JMODEM I/O without having to run it over a
  3. #    slow modem and phone line.
  4. #    Created    25-FEB-1990        Richard B. Johnson
  5. #    Revised 02-JAN-1991        Richard B. Johnson
  6. #
  7. #    Changed the warning-level to /W4 in the Microsoft CL command to
  8. #    be compatible with Microsoft's C600 highest level of error checking.
  9. #
  10.     nam    = test
  11.     headers = jmodem.h $(nam)
  12.         objects = $(nam).obj jmodem_c.obj jmodem_d.obj
  13.  
  14.     cc = CL /Gs /AS /J /c /Ois /W4 /DNOENV /FPi $*.c
  15.  
  16. $(nam).obj:        $(headers) $*.c
  17.             $(cc)
  18.  
  19. $(nam).exe:        $(headers) $(objects)
  20.             Link $(objects), $*.exe;
  21.